Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.IO.Exchangeable Namespace / IExtension<T> Interface / IsRequiredExport Method
An GrapeCity.Spreadsheet.IO.OpenXml.ImportContext object indicates the import context.
A System.Guid value represents the extension's identifier.


In This Topic
    IsRequiredExport Method (IExtension<T>)
    In This Topic
    Gets a value indicating whether the extension requires to export its data.
    Syntax
    'Declaration
     
    
    Function IsRequiredExport( _
       ByVal context As ExportContext, _
       ByVal key As Guid _
    ) As Boolean
    'Usage
     
    
    Dim instance As IExtension(Of T)
    Dim context As ExportContext
    Dim key As Guid
    Dim value As Boolean
     
    value = instance.IsRequiredExport(context, key)
    bool IsRequiredExport( 
       ExportContext context,
       Guid key
    )

    Parameters

    context
    An GrapeCity.Spreadsheet.IO.OpenXml.ImportContext object indicates the import context.
    key
    A System.Guid value represents the extension's identifier.

    Return Value

    true if the extension requires to export its data; otherwise, false.
    See Also